home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / rsa10 / RSA10.ZIP / SAMPLE / MAIN.DFM / MAIN.txt
Encoding:
Text File  |  1997-09-16  |  2.8 KB  |  171 lines

  1. object Form1: TForm1
  2.   Left = 100
  3.   Top = 158
  4.   Width = 669
  5.   Height = 325
  6.   Caption = 'RSA demo'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   OnCreate = FormCreate
  12.   OnDestroy = FormDestroy
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object Label1: TLabel
  16.     Left = 16
  17.     Top = 40
  18.     Width = 18
  19.     Height = 13
  20.     Caption = 'Key'
  21.   end
  22.   object Label2: TLabel
  23.     Left = 16
  24.     Top = 12
  25.     Width = 53
  26.     Height = 13
  27.     Caption = 'Key length:'
  28.   end
  29.   object Label3: TLabel
  30.     Left = 136
  31.     Top = 12
  32.     Width = 34
  33.     Height = 13
  34.     Caption = 'x 16 bit'
  35.   end
  36.   object LabelProgress: TLabel
  37.     Left = 184
  38.     Top = 36
  39.     Width = 3
  40.     Height = 13
  41.   end
  42.   object Label4: TLabel
  43.     Left = 16
  44.     Top = 184
  45.     Width = 72
  46.     Height = 13
  47.     Caption = 'Text to encode'
  48.   end
  49.   object Label5: TLabel
  50.     Left = 384
  51.     Top = 184
  52.     Width = 67
  53.     Height = 13
  54.     Caption = 'Encoded data'
  55.   end
  56.   object Label6: TLabel
  57.     Left = 16
  58.     Top = 248
  59.     Width = 64
  60.     Height = 13
  61.     Caption = 'Decoded text'
  62.   end
  63.   object Button1: TButton
  64.     Left = 184
  65.     Top = 8
  66.     Width = 75
  67.     Height = 25
  68.     Caption = 'Generate key'
  69.     TabOrder = 1
  70.     OnClick = Button1Click
  71.   end
  72.   object ButtonEncode: TButton
  73.     Left = 296
  74.     Top = 200
  75.     Width = 75
  76.     Height = 25
  77.     Caption = ' Encode >>'
  78.     Enabled = False
  79.     TabOrder = 6
  80.     OnClick = ButtonEncodeClick
  81.   end
  82.   object ButtonDecode: TButton
  83.     Left = 296
  84.     Top = 264
  85.     Width = 75
  86.     Height = 25
  87.     Caption = '<< Decode'
  88.     Enabled = False
  89.     TabOrder = 7
  90.     OnClick = ButtonDecodeClick
  91.   end
  92.   object Memo3: TMemo
  93.     Left = 16
  94.     Top = 56
  95.     Width = 633
  96.     Height = 113
  97.     TabOrder = 4
  98.   end
  99.   object Edit1: TEdit
  100.     Left = 16
  101.     Top = 200
  102.     Width = 265
  103.     Height = 21
  104.     MaxLength = 200
  105.     TabOrder = 5
  106.   end
  107.   object Edit3: TEdit
  108.     Left = 72
  109.     Top = 8
  110.     Width = 33
  111.     Height = 21
  112.     MaxLength = 3
  113.     ReadOnly = True
  114.     TabOrder = 0
  115.     Text = '1'
  116.   end
  117.   object Button2: TButton
  118.     Left = 272
  119.     Top = 8
  120.     Width = 75
  121.     Height = 25
  122.     Caption = 'Save key'
  123.     Enabled = False
  124.     TabOrder = 2
  125.     OnClick = Button2Click
  126.   end
  127.   object Button3: TButton
  128.     Left = 360
  129.     Top = 8
  130.     Width = 75
  131.     Height = 25
  132.     Caption = 'Load key'
  133.     Enabled = False
  134.     TabOrder = 3
  135.     OnClick = Button3Click
  136.   end
  137.   object ListBox1: TListBox
  138.     Left = 384
  139.     Top = 200
  140.     Width = 265
  141.     Height = 89
  142.     Columns = 5
  143.     ItemHeight = 13
  144.     TabOrder = 8
  145.   end
  146.   object UpDown1: TUpDown
  147.     Left = 105
  148.     Top = 8
  149.     Width = 15
  150.     Height = 21
  151.     Associate = Edit3
  152.     Min = 1
  153.     Max = 50
  154.     Position = 1
  155.     TabOrder = 9
  156.     Wrap = False
  157.   end
  158.   object Edit2: TEdit
  159.     Left = 16
  160.     Top = 264
  161.     Width = 265
  162.     Height = 21
  163.     TabOrder = 10
  164.   end
  165.   object RSA1: TRSA
  166.     OnProgress = RSA1Progress
  167.     Left = 8
  168.     Top = 72
  169.   end
  170. end
  171.